.process-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: .5rem;
}

.process-box {
  text-align: center;
  overflow: hidden;
  flex: 0 0 1.63rem;
  max-width: 44vw;
  height: 2.4rem;
  border-radius: .04rem;
  background: rgba(255, 255, 255, 1);
  box-shadow: .02rem .08rem .2rem rgba(0, 0, 0, 0.14);
  margin-bottom: .3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, var(--main-color-lighter) 100%);
}

.process-index {
  text-align: center;
  font-size: .16rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  height: .29rem;
}

.index-style {
  height: 100%;
  line-height: 100%;
  background: linear-gradient(90deg, var(--main-color) 0%, var(--main-color-light) 100%);
  padding: 0 .1rem;
  border-radius: 0 0 .04rem 0;
}

.process-icon {
  width: .55rem;
  height: auto;
}

.process-name {
  font-size: .16rem;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: .05rem;
}

.process-desc {
  padding: 0 .17rem;
  font-size: .14rem;
  font-weight: 400;
  color: rgba(102, 107, 122, 1);
  text-align: justify;
}

@media screen and (max-width: 430px) {
  .last-box {
    flex: auto;
    height: 1.77rem;
    max-width: 100% !important;
  }
}